home *** CD-ROM | disk | FTP | other *** search
/ Champak 132 (Alt) / Vol 132.iso / games / rong.swf / scripts / frame_1 / DoAction.as
Encoding:
Text File  |  2011-06-09  |  365 b   |  18 lines

  1. function AttachGameCursor(attach)
  2. {
  3.    if(attach)
  4.    {
  5.       Mouse.hide();
  6.       this.attachMovie("CMouseCursor","mouseCursor",100000);
  7.       this.mouseCursor.startDrag(true);
  8.    }
  9.    else
  10.    {
  11.       Mouse.show();
  12.       removeMovieClip(this.mouseCursor);
  13.    }
  14. }
  15. Mouse.hide();
  16. this.attachMovie("CTitles","titles1",100,{_x:150,_y:150});
  17. this.stop();
  18.